3.2.64 \(\int \frac {x^4}{(b x^2+c x^4)^{3/2}} \, dx\)

Optimal. Leaf size=21 \[ -\frac {x}{c \sqrt {b x^2+c x^4}} \]

________________________________________________________________________________________

Rubi [A]  time = 0.02, antiderivative size = 21, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 1, integrand size = 19, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.053, Rules used = {1588} \begin {gather*} -\frac {x}{c \sqrt {b x^2+c x^4}} \end {gather*}

Antiderivative was successfully verified.

[In]

Int[x^4/(b*x^2 + c*x^4)^(3/2),x]

[Out]

-(x/(c*Sqrt[b*x^2 + c*x^4]))

Rule 1588

Int[(Pp_)*(Qq_)^(m_.), x_Symbol] :> With[{p = Expon[Pp, x], q = Expon[Qq, x]}, Simp[(Coeff[Pp, x, p]*x^(p - q
+ 1)*Qq^(m + 1))/((p + m*q + 1)*Coeff[Qq, x, q]), x] /; NeQ[p + m*q + 1, 0] && EqQ[(p + m*q + 1)*Coeff[Qq, x,
q]*Pp, Coeff[Pp, x, p]*x^(p - q)*((p - q + 1)*Qq + (m + 1)*x*D[Qq, x])]] /; FreeQ[m, x] && PolyQ[Pp, x] && Pol
yQ[Qq, x] && NeQ[m, -1]

Rubi steps

\begin {align*} \int \frac {x^4}{\left (b x^2+c x^4\right )^{3/2}} \, dx &=-\frac {x}{c \sqrt {b x^2+c x^4}}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 21, normalized size = 1.00 \begin {gather*} -\frac {x}{c \sqrt {x^2 \left (b+c x^2\right )}} \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[x^4/(b*x^2 + c*x^4)^(3/2),x]

[Out]

-(x/(c*Sqrt[x^2*(b + c*x^2)]))

________________________________________________________________________________________

IntegrateAlgebraic [A]  time = 0.35, size = 32, normalized size = 1.52 \begin {gather*} -\frac {\sqrt {b x^2+c x^4}}{c x \left (b+c x^2\right )} \end {gather*}

Antiderivative was successfully verified.

[In]

IntegrateAlgebraic[x^4/(b*x^2 + c*x^4)^(3/2),x]

[Out]

-(Sqrt[b*x^2 + c*x^4]/(c*x*(b + c*x^2)))

________________________________________________________________________________________

fricas [A]  time = 1.08, size = 29, normalized size = 1.38 \begin {gather*} -\frac {\sqrt {c x^{4} + b x^{2}}}{c^{2} x^{3} + b c x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^4/(c*x^4+b*x^2)^(3/2),x, algorithm="fricas")

[Out]

-sqrt(c*x^4 + b*x^2)/(c^2*x^3 + b*c*x)

________________________________________________________________________________________

giac [A]  time = 0.21, size = 17, normalized size = 0.81 \begin {gather*} -\frac {1}{\sqrt {c + \frac {b}{x^{2}}} c x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^4/(c*x^4+b*x^2)^(3/2),x, algorithm="giac")

[Out]

-1/(sqrt(c + b/x^2)*c*x)

________________________________________________________________________________________

maple [A]  time = 0.00, size = 29, normalized size = 1.38 \begin {gather*} -\frac {\left (c \,x^{2}+b \right ) x^{3}}{\left (c \,x^{4}+b \,x^{2}\right )^{\frac {3}{2}} c} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x^4/(c*x^4+b*x^2)^(3/2),x)

[Out]

-(c*x^2+b)/c*x^3/(c*x^4+b*x^2)^(3/2)

________________________________________________________________________________________

maxima [A]  time = 1.44, size = 14, normalized size = 0.67 \begin {gather*} -\frac {1}{\sqrt {c x^{2} + b} c} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^4/(c*x^4+b*x^2)^(3/2),x, algorithm="maxima")

[Out]

-1/(sqrt(c*x^2 + b)*c)

________________________________________________________________________________________

mupad [B]  time = 4.15, size = 30, normalized size = 1.43 \begin {gather*} -\frac {\sqrt {c\,x^4+b\,x^2}}{c\,x\,\left (c\,x^2+b\right )} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x^4/(b*x^2 + c*x^4)^(3/2),x)

[Out]

-(b*x^2 + c*x^4)^(1/2)/(c*x*(b + c*x^2))

________________________________________________________________________________________

sympy [F]  time = 0.00, size = 0, normalized size = 0.00 \begin {gather*} \int \frac {x^{4}}{\left (x^{2} \left (b + c x^{2}\right )\right )^{\frac {3}{2}}}\, dx \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x**4/(c*x**4+b*x**2)**(3/2),x)

[Out]

Integral(x**4/(x**2*(b + c*x**2))**(3/2), x)

________________________________________________________________________________________